From bdfa53ac1c19fce5f427eabd0e67557ee5b5dfed Mon Sep 17 00:00:00 2001 From: robertl Date: Wed, 10 Sep 2003 22:40:03 +0000 Subject: [PATCH] Fix scaling for horizontal components of maps. --- gpsbabel/tiger.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpsbabel/tiger.c b/gpsbabel/tiger.c index c847012d1..8891d32ad 100644 --- a/gpsbabel/tiger.c +++ b/gpsbabel/tiger.c @@ -248,11 +248,11 @@ data_write(void) * Center the map along X and Y axis the midpoint of * our min and max coords each way. */ - fprintf(urlf, "lat=%f&lon=%f&wid=%f&ht=%f", + fprintf(urlf, "lat=%f&lon=%f&ht=%f&wid=%f", minlat + (latsz/2.0), minlon + (lonsz/2.0), dscale(latsz), - dscale(latsz)); + dscale(lonsz)); if (scale) { fprintf(urlf, "&iwd=%s&iht=%s", scale, scale); -- 2.30.2